home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000113_news@columbia.edu _Thu Sep 23 15:50:42 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA25008
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 23 Sep 1999 15:50:41 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id PAA22933
  7.     for kermit.misc@watsun.cc.columbia.edu; Thu, 23 Sep 1999 15:49:31 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: djprice@mindspring.com (David Price)
  10. Subject: Re: rzsz with C-kermit & Solaris
  11. Date: Thu, 23 Sep 1999 19:28:40 GMT
  12. Organization: MindSpring Enterprises
  13. Message-ID: <37ea7bcf.200731823@news.mindspring.com>
  14. To: kermit.misc@columbia.edu
  15.  
  16. fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  17.  
  18. >In article <37ea1ce0.176424958@news.mindspring.com>,
  19. >David Price <djprice@mindspring.com> wrote:
  20. >: I am attempting to use sz with C-kermit on a Solaris 2.6 X86 system
  21. >: without much success.  The rzsz version is 3.49 from Omen Tech.
  22. >: C-kermit is version 6.0.192.  The problem is as follows:
  23. >: 
  24. >: - I connect and login to the remote site successfully using kermit.
  25. >: - I enter the following command within kermit:
  26. >:     !sz -v file_to_send </dev/cua/b >/dev/cua/b
  27. >: - The following is echoed back to the screen a few times:
  28. >:     **B0100000000027fed4
  29. >:
  30. >This indicates that your version of sz does not work on standard i/o
  31. >and therefore cannot be redirected to Kermit's communications connection.
  32. >
  33. >: - Finally, the following is echoed back:
  34. >:     sz: timeout waiting for ZRINIT.
  35. >: - This same thing happens if I enter the same sz command from the
  36. >: shell once connected (without the ! of course).
  37. >: 
  38. >: I have made no modifications to the serial port via the Solaris
  39. >: admintool or pmadm.
  40. >: 
  41. >: Any help or insight on this would be appreciated.
  42. >:
  43. >Read any of:
  44. >
  45. > 1. Chapter 14 of "Using C-Kermit": Using External Protocols.
  46. >
  47. > 2. Item 38 of the Kermit FAQ:
  48. >
  49. >      http://www.columbia.edu/kermit/faq.html
  50. >      ftp://kermit.columbia.edu/kermit/faq.txt
  51. >
  52. >- Frank
  53.  
  54. Frank,
  55.  
  56. Thanks for the pointers.  I have purchased your "Using C-Kermit" and
  57. have found it an extremely useful and well written book.
  58.  
  59. Your item 38 in the Kermit FAQ has me somewhat confused.  In
  60. particular, choice 3 to "License modern versions .... from Omen" - do
  61. you mean simply to download the lastest version on Omen's web site or
  62. is there some other version that must be purchased?  I have heard this
  63. same thing from others as well from others.  Some have recommended
  64. crzsz (I did try this and did not have any success).  
  65.  
  66. The above problem appears to have had nothing to do with Kermit and sz
  67. - it was a basic scripting issue on Solaris.  I say "appears" because
  68. I did see something going out the modem as well as in the /tmp/szlog
  69. but have not yet been able to contact the remote technical contact to
  70. verify the condition of the file I send.  The following redirection
  71. metacharacters solved the above problem:
  72.  
  73.       !sz -v file_to_send </dev/cua/b >/dev/cua/b 2>&1
  74.  
  75.